summaryrefslogtreecommitdiff
path: root/test.stage
blob: 654a1e84cdb6969ae7d539a929acc06b3fb77fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

game.title = "Code Test";
game.author = "Mike Buland";
game.version = 1;
game.revision = 0;
game.start = <<start>>;

global
{
	command: "exit"
	{
		exit();
	}
}

situation <<start>>
{
	setup
	{
		x = 10;
		display( x );
		x /= 2;
		display( x );
		x *= 4;
		display( x );
		x -= 10;
		display( x );
		x += 20;
		display( x );
		exit();
	}

	enter
	{
	}
}